ReloadRequest

data class ReloadRequest(ignoreCache: Boolean?, scriptToEvaluateOnLoad: String?)

Represents request frame that can be used with Page#reload operation call.

Reloads given page optionally ignoring the cache.

See also

Constructors

ReloadRequest
Link copied to clipboard
fun ReloadRequest(ignoreCache: Boolean? = null, scriptToEvaluateOnLoad: String? = null)

Properties

ignoreCache
Link copied to clipboard
val ignoreCache: Boolean? = null
If true, browser cache is ignored (as if the user pressed Shift+refresh).
scriptToEvaluateOnLoad
Link copied to clipboard
val scriptToEvaluateOnLoad: String? = null
If set, the script will be injected into all frames of the inspected page after reload.

Sources

jvm source
Link copied to clipboard